home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / misc / amag / AM9410_2.lha / Haufenweise / Programme / AllocSupport.h < prev    next >
C/C++ Source or Header  |  1994-07-15  |  690b  |  36 lines

  1. #ifndef ALLOC_SUPPORT_H
  2. #define ALLOC_SUPPORT_H
  3.  
  4. /*
  5.  *  Include-Datei AllocSupport.h für AllocSupport.c
  6.  *
  7.  *  $VER: AllocSupport.h 1.0 © D. Göhler (11.07.94)
  8.  */
  9.  
  10. #ifndef EXEC_TYPES_H
  11. #include <exec/types.h>
  12. #endif
  13.  
  14. #ifndef EXEC_MEMORY_H
  15. #include <exec/memory.h>
  16. #endif
  17.  
  18. #ifndef EXEC_LISTS_H
  19. #include <exec/lists.h>
  20. #endif
  21.  
  22. #ifndef CLIB_EXEC_PROTOS_H
  23. #include <clib/exec_protos.h>
  24. #endif
  25.  
  26. #ifndef CLIB_ALIB_PROTOS_H
  27. #include <clib/alib_protos.h>
  28. #endif
  29.  
  30. struct MemHeader *AllocMemHeader(ULONG Size, ULONG Flags);
  31. void FreeMemHeader(struct MemHeader *mh);
  32. void *AllocateVec(struct MemHeader *mh, ULONG len);
  33. void DeallocateVec(struct MemHeader *mh, APTR mem);
  34.  
  35. #endif /* ALLOC_SUPPORT_H */
  36.